home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / CIRC3.PAK / README.TXT < prev    next >
Text File  |  1997-05-06  |  4KB  |  118 lines

  1. ========================================================================
  2.         OLE Custom Control DLL : CIRC3
  3. ========================================================================
  4.  
  5. ControlWizard has created this project for your CIRC3 OLE Custom
  6. Control DLL, which contains 1 Control.
  7.  
  8. This skeleton project not only demonstrates the basics of writing an OLE
  9. Custom Control, but is also a starting point for writing the specific
  10. features of your control.
  11.  
  12. This file contains a summary of what you will find in each of the files
  13. that make up your CIRC3 OLE Custom Control DLL.
  14.  
  15.  
  16. CIRC3.MAK
  17.     The project makefile for building your 16-bit OLE Custom Control.
  18.     This project file is compatible with the Visual C++ 1.5 Workbench.
  19.     It is also compatible with NMAKE.
  20.  
  21. CIRC332.MAK
  22.     The project makefile for building your 32-bit OLE Custom Control.
  23.     This project file is compatible with the Visual C++ 2.0 Workbench.
  24.     It is also compatible with NMAKE.
  25.  
  26. MAKEFILE
  27.     A makefile that makes it easy to run NMAKE from the command prompt.
  28.     Use the following parameters with NMAKE:
  29.         DEBUG=0     Builds retail version
  30.         DEBUG=1     Builds debug version (default)
  31.         WIN32=0     Builds 16-bit version (default)
  32.         WIN32=1     Builds 32-bit version
  33.         UNICODE=0   Builds ANSI/DBCS version (default for WIN32=0)
  34.         UNICODE=1   Build Unicode version (default for WIN32=1)
  35.  
  36. CIRC3.H
  37.     This is the main include file for the OLE Custom Control DLL.  It
  38.     includes other project-specific includes such as RESOURCE.H.
  39.  
  40. CIRC3.CPP
  41.     This is the main source file that contains the OLE DLL initialization,
  42.     termination and other bookkeeping.
  43.  
  44. CIRC3.RC
  45.     This is a listing of the Microsoft Windows resources that the project
  46.     uses.  This file can be directly edited with the Visual C++ resource
  47.     editor.
  48.  
  49. CIRC3.RC2
  50.     This file contains resources that are not edited by the resource editor.
  51.     Initially this contains a VERSIONINFO resource that you can customize
  52.     for your OLE Custom Control DLL, and a TYPELIB resource for your DLL's
  53.     type library.  You should place other manually maintained resources in
  54.     this file.
  55.  
  56. CIRC3.DEF
  57.     This file contains information about the OLE Custom Control DLL that
  58.     must be provided to run with Microsoft Windows.  It defines parameters
  59.     such as the name and description of the DLL, and the size of the initial
  60.     local heap.  The numbers in this file are typical for OLE Custom Control
  61.     DLLs.
  62.  
  63. CIRC332.DEF
  64.     This is a version of CIRC3.DEF for when building a 32-bit version of
  65.     the OLE Custom Control DLL.
  66.  
  67. CIRC3.CLW
  68.     This file contains information used by ClassWizard to edit existing
  69.     classes or add new classes.  ClassWizard also uses this file to store
  70.     information needed to generate and edit message maps and dialog data
  71.     maps and to generate prototype member functions.
  72.  
  73. CIRC3.ODL
  74.     This file contains the Object Description Language source code for the
  75.     type library of your OLE Control.
  76.  
  77. CIRC3.ICO
  78.     This file contains an icon that will appear in the About box.  This icon
  79.     is included by the main resource file CIRC3.RC.
  80.  
  81. /////////////////////////////////////////////////////////////////////////////
  82.  
  83. CIRC3CTL.H
  84.     This file contains the declaration of the CCirc3Ctrl C++ class.
  85.  
  86. CIRC3CTL.CPP
  87.     This file contains the implementation of the CCirc3Ctrl C++ class.
  88.  
  89. CIRC3PPG.H
  90.     This file contains the declaration of the CCirc3PropPage C++ class.
  91.  
  92. CIRC3PPG.CPP
  93.     This file contains the implementation of the CCirc3PropPage C++ class.
  94.  
  95. CIRC3CTL.BMP
  96.     This file contains a bitmap that a container will use to represent the
  97.     CCirc3Ctrl control when it appears on a tool palette.  This bitmap
  98.     is included by the main resource file CIRC3.RC.
  99.  
  100. /////////////////////////////////////////////////////////////////////////////
  101. Other standard files:
  102.  
  103. STDAFX.H, STDAFX.CPP
  104.     These files are used to build a precompiled header (PCH) file
  105.     named STDAFX.PCH and a precompiled types (PCT) file named STDAFX.OBJ.
  106.  
  107. RESOURCE.H
  108.     This is the standard header file, which defines new resource IDs.
  109.     App Studio reads and updates this file.
  110.  
  111. /////////////////////////////////////////////////////////////////////////////
  112. Other notes:
  113.  
  114. ControlWizard uses "TODO:" to indicate parts of the source code you
  115. should add to or customize.
  116.  
  117. /////////////////////////////////////////////////////////////////////////////
  118.